.common-popup{
  z-index: 99999999;
  /* -moz-opacity: 0.8; */
  /* background:rgba(108,100,100,0.8); */
  width:760px;
  height:560px;
  position: fixed;
  top:1%;
  left:28%;
  text-align: center;
  margin:0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-popup .popup-box{
  width:760px;
  height:560px;
  border-radius: 10px;
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
  /* margin-top:120px; */
   /* margin:120px auto; */
}
.common-popup .close-button{
  font-size: 30px;
  color: red;
  position: absolute;
  z-index: 999999999;
  top:4px;
  right: 4px;
  background-color: #fff;
  border-radius: 50%;
  width:30px;
  height:30px;
  cursor: pointer;
}
.common-popup .popup-content{
  width:100%;
  height:100%;
  background-color: var(--backColor);
  background-repeat: no-repeat; /*不平埔*/
  background-position:50% 50% ; /*居中*/
  background-size:100% 100%; /*背景图片大小*/
}
.common-popup .popup-content .text-content{
  flex: 1;
  height:100%; 
  text-align:justify;
  padding:38px 12px 12px 12px;
}